net/http.routingIndex.segments (field)

9 uses

	net/http (current package)
		routing_index.go#L19: 	segments map[routingIndexKey][]*pattern
		routing_index.go#L35: 		if idx.segments == nil {
		routing_index.go#L36: 			idx.segments = map[routingIndexKey][]*pattern{}
		routing_index.go#L43: 			idx.segments[key] = append(idx.segments[key], pat)
		routing_index.go#L87: 		return apply(idx.segments[routingIndexKey{s: "/", pos: len(pat.segments) - 1}])
		routing_index.go#L103: 			lpats := idx.segments[routingIndexKey{s: seg.s, pos: i}]
		routing_index.go#L104: 			wpats := idx.segments[routingIndexKey{s: "", pos: i}]
		routing_index.go#L120: 	for _, pats := range idx.segments {